home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / knowhow4 / _heap.inc < prev    next >
Text File  |  1991-12-04  |  919b  |  22 lines

  1. ;[]-----------------------------------------------------------------[]
  2. ;|      _HEAP.INC                                                    |
  3. ;|                                                                   |
  4. ;|      C/C++ Run Time Library        version 4.0                    |
  5. ;|                                                                   |
  6. ;|      Copyright (c) 1987, 1991 by Borland International Inc.       |
  7. ;|      All Rights Reserved.                                         |
  8. ;[]-----------------------------------------------------------------[]
  9.  
  10. ;-----------------------------------------------------------------------
  11. ; Values returned by some of the heap routines.
  12. ;-----------------------------------------------------------------------
  13. _HEAPEMPTY    EQU    1
  14. _HEAPOK        EQU    2
  15. _FREEENTRY    EQU    3
  16. _USEDENTRY    EQU    4
  17. _HEAPEND    EQU    5
  18. _HEAPCORRUPT    EQU    -1
  19. _BADNODE    EQU    -2
  20. _BADVALUE    EQU    -3
  21.  
  22.